home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form VBBook
- BackColor = &H00FF0000&
- BorderStyle = 1 'Fixed Single
- Caption = "VB Book"
- ClientHeight = 2715
- ClientLeft = 1620
- ClientTop = 1785
- ClientWidth = 6840
- Height = 3120
- Icon = VBBOOK13.FRX:0000
- Left = 1560
- LinkMode = 1 'Source
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2715
- ScaleWidth = 6840
- Top = 1440
- Width = 6960
- Begin Timer Timer1
- Interval = 10000
- Left = 0
- Top = 2280
- End
- Begin Frame Frame1
- BackColor = &H00FFFFFF&
- ForeColor = &H00000000&
- Height = 2415
- Left = 240
- TabIndex = 0
- Top = 120
- Width = 6375
- Begin CommandButton go1
- Caption = "Go"
- Height = 375
- Left = 2640
- TabIndex = 3
- Top = 1800
- Width = 615
- End
- Begin Label Label3
- Alignment = 2 'Center
- Caption = "Version 1.3, 30 Mar 93"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 12
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- ForeColor = &H00800000&
- Height = 495
- Left = 1320
- TabIndex = 4
- Top = 1080
- Width = 3255
- End
- Begin Label Label2
- Caption = "by Dennis Scott"
- FontBold = -1 'True
- FontItalic = -1 'True
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- ForeColor = &H00008080&
- Height = 255
- Left = 2160
- TabIndex = 2
- Top = 720
- Width = 1935
- End
- Begin Label Label1
- Caption = "VB Book"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 18
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- ForeColor = &H000000FF&
- Height = 495
- Left = 2160
- TabIndex = 1
- Top = 240
- Width = 1815
- End
- End
- 'This form is the initial Title Box
- Sub Form_Load ()
- CenterForm vbbook
- vbbook.Show
- End Sub
- Sub GO1_Click ()
- vbbook.Hide 'dispose of VBBOOK form
- 'Removed the call to VBBOUT so that the user
- 'can see the desktop
- CenterForm vbbinp
- vbbinp.Show 'move on to VBBINP form
- Timer1.enabled = 0 'Turn off the timer
- End Sub
- Sub Timer1_Timer ()
- vbbook.Hide 'Activated after 5 seconds
- CenterForm vbbinp
- 'VBBout.Show 'which was set when the form
- vbbinp.Show 'was designed (5000 mSec)
- Timer1.enabled = 0 'Turn off the timer
- End Sub
-